home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000168_news@newsmaster….columbia.edu _Tue May 6 11:16:17 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA21565
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 6 May 1997 11:16:17 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA13270
  7.     for kermit.misc@watsun; Tue, 6 May 1997 11:16:16 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,comp.unix.solaris
  11. Subject: Re: Kermit Not Disconnecting -- Why?
  12. Date: 6 May 1997 15:16:16 GMT
  13. Organization: Columbia University
  14. Lines: 53
  15. Distribution: inet
  16. Message-ID: <5kni00$qcp$1@apakabar.cc.columbia.edu>
  17. References: <georgebE9qsxJ.CJA@netcom.com>
  18. NNTP-Posting-Host: watsun.cc.columbia.edu
  19. Xref: news.columbia.edu comp.protocols.kermit.misc:6992 comp.unix.solaris:119700
  20.  
  21. In article <georgebE9qsxJ.CJA@netcom.com>,
  22. George H. Bosworth <georgeb@netcom.com> wrote:
  23. : I moved from SVR4/386 to Solaris 2.5, with the same Supra FAXmodem 288,
  24. : and now do not disconnect from a remote service. The sequence is:
  25. : [quit remote service, logout messages]
  26. : Connection closed.  [message as before]
  27. : NO CARRIER          [new message]
  28. : Process is hung     [new; modem's red TR light stays on]
  29. : Anny ideas? Thanks -- George
  30. Try using the current version of C-Kermit, 6.0:
  31.  
  32.   http://www.columbia.edu/kermit/ck60.html
  33.  
  34. : # Kermit initialization file by George
  35. : set prompt Susan-Kermit>
  36. : set quiet on
  37. : set modem hayes       ; OK for Supra
  38. :
  39. C-Kermit 6.0 has a built-in Supra modem type.
  40.  
  41. : set line /dev/term/a  ; Modem device
  42. : set speed 38400       ; Supra is max 28,800
  43. :
  44. What about flow control?  You should be using RTS/CTS with the Supra.
  45. C-Kermit 6.0 does this automatically.
  46.  
  47. : set parity none       ; For binary files
  48. : set terminal bytesize 8         
  49. : set file type binary  ; To transfer binaries OK
  50. : set file name literal ; Preserve orignal name
  51. : set receive packet-length 2048  ; Size of one packet
  52. : set send    packet-length 2048  ; Ditto, other way
  53. : set window 4          ; Send 4 packets before reply
  54. : set block-check 2     ; Set 2-char, 12-bit checksum
  55. : define mult  -
  56. :  for \%i 1 10 1 { wait 1, dial \%1, xif success { echo, connect, stop } }
  57. :
  58. C-Kermit 6.0 redials automatically.
  59.  
  60. : define netcom    do mult       328-9940
  61. : define netcom.sj do mult 1-408-261-4700
  62. : define netcom.sf do mult       985-5650
  63. :
  64. C-Kermit 6.0 allows you to enter multiple for the same service in
  65. your dialing directory and tries each one in turn automatically.
  66.  
  67. - Frank